home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Software Contest 3 / FM Towns Software Contest 3.iso / exp / video_t / no1 / c_sorse / exitfunc.c < prev    next >
Text File  |  1994-01-07  |  371b  |  21 lines

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. #include <winb.h>
  5. #include <te.h>
  6. #include <fntb.h>
  7. #include <gui.h>
  8.  
  9.  
  10. /*    終了    */
  11. int    exitFunc(kobj, messId, argc, pev, trigger)
  12. int        kobj ;
  13. int        messId ;
  14. int        argc ;
  15. EVENT    *pev ;
  16. int        trigger ;
  17. {
  18.     /*    終了フラグを立てて MMI_ExecSystem 関数を終了します。    */
  19.     return MMI_SetHaltFlag(TRUE) ;
  20. }
  21.